home *** CD-ROM | disk | FTP | other *** search
- /*****
- * Error.h
- *
- * Interfacce pubbliche per Error.c
- * © Com&Media, 1994
- *
- * 16/10/94 Adeguamento per XTension (Fabio Barbieri)
- * 16/9/94 Prima stesura (Fabio Barbieri)
- *
- ****/
- #ifndef __Error__
- #define __Error__
- /***** Typedef globali *****/
- typedef struct
- {
- Boolean occurred;
- long errCode1, errCode2;
- Str255 item1, item2, errorMsg;
- } ErrorDescription;
-
- /***** Variabili esterne *****/
- extern ErrorDescription ErrorData;
-
- /***** Function prototyping *****/
- void ResetErrorData(void);
- void SetErrorData(long, long, char *, char *, char *);
- void DisplayErrorData(void);
- #endif